home *** CD-ROM | disk | FTP | other *** search
/ Dos/V Magazine 1995 October 15 / CD [VMAG951015].bin / _demo / gambo / toilet1.dxr / 00047.ls < prev    next >
Encoding:
Text File  |  1995-02-13  |  544 b   |  26 lines

  1. on exitFrame
  2.   mIdle()
  3.   if rollOver(4) then
  4.     cursor([800, 801])
  5.     set the mouseDownScript to EMPTY
  6.   else
  7.     if rollOver(10) then
  8.       cursor([800, 801])
  9.       set the mouseDownScript to EMPTY
  10.     else
  11.       if rollOver(5) then
  12.         cursor([800, 801])
  13.         set the mouseDownScript to EMPTY
  14.       else
  15.         if rollOver(1) then
  16.           cursor([800, 801])
  17.           set the mouseDownScript to EMPTY
  18.         else
  19.           cursor(-1)
  20.           set the mouseDownScript to EMPTY
  21.         end if
  22.       end if
  23.     end if
  24.   end if
  25. end
  26.